class: center, middle, inverse, title-slide # Modelos Dinâmicos em Soft Commodities ## Financial Analytics ### Luis Fechio, Viviane Sanchez ### Programa Avançado em Data Science - Insper ### 11/28/2020 --- # Introdução Modelagem dinâmica dos preços das commodities softs listadas na [Intercontinental Exchange (ICE)](https://www.theice.com/products/Futures-Options/Agriculture) - Açúcar VHP - `sugar` - Cacau - `cocoa` - Algodão - `cotton` - Café - `coffee` - Suco de laranja congelado - `orange_juice` Como benchmark, será utilizado ..... (BRL? DXY? BCOM?) [BCOM](https://www.bloomberg.com/company/press/bloomberg-commodity-index-2020-target-weights-announced/) --- # Objetivo comparar cada método, explicitando os prós e contras de cada alternativa e fazer uma conclusão de qual deles considera mais apropriado para cada ativo. A avaliação do método mais adequado deverá ser tanto em termos do que faz sentido teórico (interpretação dos coeficientes ao longo do tempo) quanto em termos quantitativos ao realizar um backtest e comparar as métricas para diferentes abordagens. --- ## Preços ## Série de preços ```r cmdty_raw %>% #mutate(daily_return = daily_return*100) %>% hchart(., "line", hcaes(x = date, y = settle, group = cmdty)) %>% #hc_colors(cols) %>% hc_tooltip(valueDecimals = 2) %>% hc_xAxis(title = list(text = "Data")) %>% hc_yAxis(title = list(text = "Settle")) ```
--- ## Série de Retornos ```r cmdty_raw %>% mutate(daily_return = daily_return*100) %>% hchart(., "line", hcaes(x = date, y = daily_return, group = cmdty)) %>% #hc_colors(cols) %>% hc_tooltip(valueDecimals = 2) %>% hc_xAxis(title = list(text = "Data")) %>% hc_yAxis(title = list(text = "Retorno Diário"), labels = list(format = "{value}%")) ```
## Retornos Acumulado ```r cmdty_raw %>% mutate(daily_return = daily_return*100) %>% hchart(., "line", hcaes(x = date, y = acc_return, group = cmdty)) %>% #hc_colors(cols) %>% hc_tooltip(valueDecimals = 2) %>% hc_xAxis(title = list(text = "Data")) %>% hc_yAxis(title = list(text = "Retorno Acumulado"), labels = list(format = "{value}%")) ```
--- ## Volatilidade ```r cmdty_raw %>% mutate(sq_return = sq_return*100) %>% hchart(., "line", hcaes(x = date, y = sq_return, group = cmdty)) %>% #hc_colors(cols) %>% hc_tooltip(valueDecimals = 2) %>% hc_xAxis(title = list(text = "Data")) %>% hc_yAxis(title = list(text = "Proxy da Volatilidade"), labels = list(format = "{value}%")) ```
# CAPM ## CAPM Estático ## Resultados ``` ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ## Warning in grid.Call(C_stringMetric, as.graphicsAnnot(x$label)): font family 'Open Sans' not found, ## will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` <!-- --> ```r tidy_lm %>% #filter(term == "bmk_return") %>% ggplot(aes(estimate, p.value, label = cmdty)) + geom_vline(xintercept = 0, lty = 2, size = 1.5, alpha = 0.7, color = "gray50") + geom_point(aes(color = cmdty), alpha = 0.8, size = 2.5, show.legend = FALSE) + scale_y_log10() + facet_wrap(~term) + geom_text_repel(size = 3) + scale_color_manual(values = hc_cols) ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` ``` ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ## Warning in grid.Call(C_textBounds, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' not ## found, will use 'sans' instead ``` ``` ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ## Warning in grid.Call.graphics(C_text, as.graphicsAnnot(x$label), x$x, x$y, : font family 'Open Sans' ## not found, will use 'sans' instead ``` <!-- --> ## CAPM Dinâmico ## CAPM com modelo de Volatilidade # Referências - [Train and analyze many models for #TidyTuesday crop yields](https://juliasilge.com/blog/crop-yields/)